home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-08-11 | 1.1 KB | 38 lines | [TEXT/KAHL] |
- //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- // //
- // //
- // Copyright PennyWise Software, 1994. //
- // //
- // Part of the PennyWise Software Application Framework //
- // //
- // //
- // OpenFiles.c Written by Peter Kaplan //
- // //
- // //
- //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- #include <Movies.h>
- #include "MovieWindow.h"
- #include "TextWindow.h"
- #include "OpenFiles.h"
- #include "PictWindow.h"
- //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- void AllWindowsGetFileOpen(void)
- {
- StandardFileReply reply;
- SFTypeList theTypeList;
-
- theTypeList[0] = 'TEXT';
- theTypeList[1] = 'MooV';
- theTypeList[2] = 'PICT';
-
- StandardGetFilePreview(NULL,3,theTypeList,&reply);
- if (reply.sfGood) {
- if (reply.sfType == 'TEXT')
- TextWindowOpen(&reply.sfFile);
- else if (reply.sfType == 'MooV')
- MovieWindowOpen(&reply.sfFile);
- else if (reply.sfType == 'PICT')
- PictWindowOpen(&reply.sfFile);
- }
- }
-